587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
27 lines
602 B
Nix
27 lines
602 B
Nix
{ lib, buildPythonPackage, fetchPypi, watchman }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywatchman";
|
|
version = "2.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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;
|
|
};
|
|
|
|
}
|