summary refs log tree commit diff
path: root/pkgs/development/python-modules/snuggs/default.nix
blob: f88b6080fdf3c3c90d380816d7a069439919c96c (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
27
28
29
{ buildPythonPackage, lib, fetchFromGitHub
, click, numpy, pyparsing
, pytest, hypothesis
}:

buildPythonPackage rec {
  pname = "snuggs";
  version = "1.4.7";

  # Pypi doesn't ship the tests, so we fetch directly from GitHub
  src = fetchFromGitHub {
    owner = "mapbox";
    repo = pname;
    rev = version;
    sha256 = "1p3lh9s2ylsnrzbs931y2vn7mp2y2xskgqmh767c9l1a33shfgwf";
  };

  propagatedBuildInputs = [ click numpy pyparsing ];

  checkInputs = [ pytest hypothesis ];
  checkPhase = "pytest test_snuggs.py";

  meta = with lib; {
    description = "S-expressions for Numpy";
    license = licenses.mit;
    homepage = "https://github.com/mapbox/snuggs";
    maintainers = with maintainers; [ mredaelli ];
  };
}