1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, parts
6, pytestCheckHook
7}:
8
9buildPythonPackage rec {
10 pname = "bitlist";
11 version = "0.3.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "04dz64r21a39p8wph5qlhvs5y873qgk6xxjlzw8n695b8jm3ixir";
16 };
17
18 propagatedBuildInputs = [
19 parts
20 ];
21
22 checkInputs = [
23 pytestCheckHook
24 nose
25 ];
26
27 pythonImportsCheck = [ "bitlist" ];
28
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 };
35}