summary refs log tree commit diff
path: root/pkgs/development/python-modules/varint/default.nix
blob: 5f32dff4aa5cff541ac6903b95f6890a7ec9be8e (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
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
  pname = "varint";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version ;
    sha256 = "a6ecc02377ac5ee9d65a6a8ad45c9ff1dac8ccee19400a5950fb51d594214ca5";
  };

  # No tests are available
  doCheck = false;

  pythonImportsCheck = [ "varint" ];

  meta = with lib; {
    description = "A basic varint implementation in python";
    homepage = "https://github.com/fmoo/python-varint";
    license = licenses.mit;
    maintainers = with maintainers; [ rakesh4g ];
  };
}