summary refs log tree commit diff
path: root/pkgs/development/python-modules/pywatchman/default.nix
blob: 5e3c4d6cc5a04a6a0cf7db03a5f8276a69808e82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, 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 lib; {
    description = "Watchman client for Python";
    homepage = "https://facebook.github.io/watchman/";
    license = licenses.bsd3;
  };

}