12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 owner = "scott-griffiths";
22 rev = "refs/tags/bitstring-${version}";
23 hash = "sha256-m2LZdUWOMxzr/biZhD1nWagab8PohHTcr+U1di0nkrU=";
26 build-system = [ setuptools ];
28 dependencies = [ bitarray ];
45 pythonImportsCheck = [ "bitstring" ];
48 description = "Module for binary data manipulation";
49 homepage = "https://github.com/scott-griffiths/bitstring";
50 license = licenses.mit;
51 platforms = platforms.unix;
52 maintainers = with maintainers; [ bjornfor ];