02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
27 lines
603 B
Nix
27 lines
603 B
Nix
{ lib, buildPythonPackage, fetchPypi, watchman }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywatchman";
|
|
version = "1.4.1";
|
|
format = "setuptools";
|
|
|
|
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 lib; {
|
|
description = "Watchman client for Python";
|
|
homepage = "https://facebook.github.io/watchman/";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|