pythonPackages.pywatchman: move to python-modules
pywatchman is licensed under BSD-3
150f1fb4ef
This commit is contained in:
parent
0e5a184980
commit
58db095c86
2 changed files with 27 additions and 15 deletions
26
pkgs/development/python-modules/pywatchman/default.nix
Normal file
26
pkgs/development/python-modules/pywatchman/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue