Skip to content

Commit

Permalink
python3Packages.multitasking: init at 0.0.9
Browse files Browse the repository at this point in the history
Dependency for python3Packages.yfinance
  • Loading branch information
drewrisinger authored and Jon committed Aug 25, 2020
1 parent a9987f8 commit 9e8218b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/python-modules/multitasking/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
pname = "multitasking";
version = "0.0.9";

# GitHub source releases aren't tagged
src = fetchPypi {
inherit pname version;
sha256 = "b59d99f709d2e17d60ccaa2be09771b6e9ed9391c63f083c0701e724f624d2e0";
};

doCheck = false; # No tests included
pythonImportsCheck = [ "multitasking" ];

meta = with lib; {
description = "Non-blocking Python methods using decorators";
homepage = "https://github.com/ranaroussi/multitasking";
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4903,6 +4903,8 @@ in {

multiprocess = callPackage ../development/python-modules/multiprocess { };

multitasking = callPackage ../development/python-modules/multitasking { };

munkres = callPackage ../development/python-modules/munkres { };

musicbrainzngs = callPackage ../development/python-modules/musicbrainzngs { };
Expand Down

0 comments on commit 9e8218b

Please sign in to comment.