ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bitarray / default.nix
blobf49c4c9de47dc94827a32f02b19f6bc2290bdef9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "bitarray";
10   version = "2.6.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-VtPxbdgHscVnMqJEzgccE17pc9PtyZKUGMGyTFQ5oP0=";
18   };
20   checkPhase = ''
21     cd $out
22     ${python.interpreter} -c 'import bitarray; bitarray.test()'
23   '';
25   pythonImportsCheck = [
26     "bitarray"
27   ];
29   meta = with lib; {
30     description = "Efficient arrays of booleans";
31     homepage = "https://github.com/ilanschnell/bitarray";
32     changelog = "https://github.com/ilanschnell/bitarray/raw/${version}/CHANGE_LOG";
33     license = licenses.psfl;
34     maintainers = with maintainers; [ bhipple ];
35   };