Merge pull request #45732 from marsam/feature/update-pywatchman

pythonPackages.pywatchman: 1.3.0 -> 1.4.1
This commit is contained in:
Frederik Rietdijk 2018-08-30 17:54:53 +02:00 committed by GitHub
commit ca6442bc33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 17 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

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