about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/py-cid/default.nix
blob: 86c2e80601f6930f2374ebac0083d3c55722d6bf (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, base58
, py-multibase
, py-multicodec
, morphys
, py-multihash
, hypothesis
}:

buildPythonPackage rec {
  pname = "py-cid";
  version = "0.3.0";
  disabled = pythonOlder "3.5";

  src = fetchFromGitHub {
    owner = "ipld";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-aN7ee25ghKKa90+FoMDCdGauToePc5AzDLV3tONvh4U=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "base58>=1.0.2,<2.0" "base58>=1.0.2" \
      --replace "py-multihash>=0.2.0,<1.0.0" "py-multihash>=0.2.0" \
      --replace "'pytest-runner'," ""
  '';

  propagatedBuildInputs = [
    base58
    py-multibase
    py-multicodec
    morphys
    py-multihash
  ];

  checkInputs = [
    pytestCheckHook
    hypothesis
  ];

  pythonImportsCheck = [ "cid" ];

  meta = with lib; {
    description = "Self-describing content-addressed identifiers for distributed systems implementation in Python";
    homepage = "https://github.com/ipld/py-cid";
    license = licenses.mit;
    maintainers = with maintainers; [ Luflosi ];
  };
}