Skip to content

Commit

Permalink
Merge pull request #309512 from annaleeleaves/schwifty-fix
Browse files Browse the repository at this point in the history
python311Packages.schwifty: unbreak -- add missing dependency
  • Loading branch information
mweinelt authored May 6, 2024
2 parents 6c3a8bb + 869434b commit 8f65060
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/development/python-modules/schwifty/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
, hatch-vcs

# dependencies
, importlib-resources
, iso3166
, pycountry

Expand All @@ -22,9 +23,9 @@
buildPythonPackage rec {
pname = "schwifty";
version = "2024.4.0";
format = "pyproject";
pyproject = true;

disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";

src = fetchPypi {
inherit pname version;
Expand All @@ -39,6 +40,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [
iso3166
pycountry
] ++ lib.optionals (pythonOlder "3.12") [
importlib-resources
];

passthru.optional-dependencies = {
Expand Down

0 comments on commit 8f65060

Please sign in to comment.