python3Packages.bitlist: init at 0.3.1
This commit is contained in:
@@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, parts
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bitlist";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "04dz64r21a39p8wph5qlhvs5y873qgk6xxjlzw8n695b8jm3ixir";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
parts
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
nose
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "bitlist" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for working with little-endian list representation of bit strings";
|
||||||
|
homepage = "https://github.com/lapets/bitlist";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -979,6 +979,8 @@ in {
|
|||||||
|
|
||||||
bitcoin-price-api = callPackage ../development/python-modules/bitcoin-price-api { };
|
bitcoin-price-api = callPackage ../development/python-modules/bitcoin-price-api { };
|
||||||
|
|
||||||
|
bitlist = callPackage ../development/python-modules/bitlist { };
|
||||||
|
|
||||||
bitmath = callPackage ../development/python-modules/bitmath { };
|
bitmath = callPackage ../development/python-modules/bitmath { };
|
||||||
|
|
||||||
bitstring = callPackage ../development/python-modules/bitstring { };
|
bitstring = callPackage ../development/python-modules/bitstring { };
|
||||||
|
|||||||
Reference in New Issue
Block a user