blob: 4430fd84f31828df3e3add55b75684d127fb8c30 (
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
|
{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "varint";
version = "1.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a6ecc02377ac5ee9d65a6a8ad45c9ff1dac8ccee19400a5950fb51d594214ca5";
};
# No tests are available
doCheck = false;
pythonImportsCheck = [ "varint" ];
meta = with lib; {
description = "Basic varint implementation in python";
homepage = "https://github.com/fmoo/python-varint";
license = licenses.mit;
maintainers = with maintainers; [ rakesh4g ];
};
}
|