Skip to content

Commit

Permalink
Merge pull request #120323 from dotlambda/bitarray-2.0.1
Browse files Browse the repository at this point in the history
pythonPackages.bitarray: 1.8.1 -> 2.0.1
  • Loading branch information
bhipple committed Apr 24, 2021
2 parents 93de027 + 63a43ed commit e4e7514
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/bitarray/default.nix
@@ -1,14 +1,19 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi, python }:

buildPythonPackage rec {
pname = "bitarray";
version = "1.8.1";
version = "2.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "e02f79fba7a470d438eb39017d503498faaf760b17b6b46af1a9de12fd58d311";
sha256 = "sha256-7DpPbXEaee0jrqlUFjjTNT3D8IPyk6ExgLFLSC4+Ge8=";
};

checkPhase = ''
cd $out
${python.interpreter} -c 'import bitarray; bitarray.test()'
'';

pythonImportsCheck = [ "bitarray" ];

meta = with lib; {
Expand Down

0 comments on commit e4e7514

Please sign in to comment.