mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
32 lines
608 B
Nix
32 lines
608 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
watchman,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywatchman";
|
|
version = "2.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-JTVNnjZH+UQRpME+UQyDoc7swXl3sFJbpBsW5wGceww=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pywatchman/__init__.py \
|
|
--replace "'watchman'" "'${watchman}/bin/watchman'"
|
|
'';
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Watchman client for Python";
|
|
homepage = "https://facebook.github.io/watchman/";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|