Skip to content

Commit

Permalink
python3Packages.bitlist: 0.6.2 -> 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Mar 14, 2022
1 parent 05d738a commit 2a03d6f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pkgs/development/python-modules/bitlist/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@
, nose
, parts
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
pname = "bitlist";
version = "0.6.2";
version = "0.7.0";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
sha256 = "69cf632ca61b5fb5d2fd7587ddf023bcab8f327302f15070ec9079b68df9082a";
sha256 = "sha256-p3Gws48u1/AzltbtPyWvSX4O0u4MgSXiVq4GstpPCCg=";
};

propagatedBuildInputs = [
Expand All @@ -29,6 +32,11 @@ buildPythonPackage rec {
"bitlist"
];

postPatch = ''
substituteInPlace setup.cfg \
--replace " --cov=bitlist --cov-report term-missing" ""
'';

meta = with lib; {
description = "Python library for working with little-endian list representation of bit strings";
homepage = "https://github.com/lapets/bitlist";
Expand Down

0 comments on commit 2a03d6f

Please sign in to comment.