ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cdcs / default.nix
blob2c608c06251ecd1c5aaa405149f85ebfe92755e0
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , ipython
5 , numpy
6 , pandas
7 , pytestCheckHook
8 , pythonOlder
9 , requests
10 , responses
11 , setuptools
12 , tqdm
15 buildPythonPackage rec {
16   pname = "cdcs";
17   version = "0.1.9";
18   format = "setuptools";
20   disabled = pythonOlder "3.6";
22   src = fetchFromGitHub {
23     owner = "usnistgov";
24     repo = "pycdcs";
25     # https://github.com/usnistgov/pycdcs/issues/1
26     rev = "0a770b752301c27e227ca40a4752f305b55dee20";
27     sha256 = "sha256-AUrVEFea4VtBJXWWgECqdBFCqKuHWAlh07Dljp+HBa0=";
28   };
30   nativeBuildInputs = [
31     setuptools
32   ];
34   propagatedBuildInputs = [
35     ipython
36     numpy
37     pandas
38     requests
39     tqdm
40   ];
42   checkInputs = [
43     pytestCheckHook
44     responses
45   ];
47   pythonImportsCheck = [
48     "cdcs"
49   ];
51   meta = with lib; {
52     description = "Python client for performing REST calls to configurable data curation system (CDCS) databases";
53     homepage = "https://github.com/usnistgov/pycdcs";
54     license = licenses.mit;
55     maintainers = with maintainers; [ fab ];
56   };