linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / bitlist / default.nix
blobac8cf39cff2f13f468ef8c3e7b51f98c097332cf
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , parts
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "bitlist";
11   version = "0.3.1";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "04dz64r21a39p8wph5qlhvs5y873qgk6xxjlzw8n695b8jm3ixir";
16   };
18   propagatedBuildInputs = [
19     parts
20   ];
22   checkInputs = [
23     pytestCheckHook
24     nose
25   ];
27   pythonImportsCheck = [ "bitlist" ];
29   meta = with lib; {
30     description = "Python library for working with little-endian list representation of bit strings";
31     homepage = "https://github.com/lapets/bitlist";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };