pythonPackages.pywatchman: move to python-modules

pywatchman is licensed under BSD-3

    150f1fb4ef
This commit is contained in:
Mario Rodas 2018-08-29 09:10:50 -05:00
parent 0e5a184980
commit 58db095c86
2 changed files with 27 additions and 15 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi, watchman }:
buildPythonPackage rec {
pname = "pywatchman";
version = "1.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "1yf2gm20wc3djpb5larxii3l55xxby0il2ns3q0v1byyfnr7w16h";
};
postPatch = ''
substituteInPlace pywatchman/__init__.py \
--replace "'watchman'" "'${watchman}/bin/watchman'"
'';
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
description = "Watchman client for Python";
homepage = https://facebook.github.io/watchman/;
license = licenses.bsd3;
};
}

View file

@ -4429,21 +4429,7 @@ in {
};
};
pywatchman = buildPythonPackage rec {
name = "pywatchman-${version}";
version = "1.4.1";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pywatchman/pywatchman-${version}.tar.gz";
sha256 = "1yf2gm20wc3djpb5larxii3l55xxby0il2ns3q0v1byyfnr7w16h";
};
postPatch = ''
substituteInPlace pywatchman/__init__.py \
--replace "'watchman'" "'${pkgs.watchman}/bin/watchman'"
'';
# No tests in archive
doCheck = false;
};
pywatchman = callPackage ../development/python-modules/pywatchman { };
pywavelets = callPackage ../development/python-modules/pywavelets { };