aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pathos
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pathos')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pathos/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pathos/default.nix b/nixpkgs/pkgs/development/python-modules/pathos/default.nix
new file mode 100644
index 00000000000..2b9134750fe
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pathos/default.nix
@@ -0,0 +1,30 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, dill
+, pox
+, ppft
+, multiprocess
+}:
+
+buildPythonPackage rec {
+ pname = "pathos";
+ version = "0.2.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "21ae2cb1d5a76dcf57d5fe93ae8719c7339f467e246163650c08ccf35b87c846";
+ };
+
+ propagatedBuildInputs = [ dill pox ppft multiprocess ];
+
+ # Require network
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Parallel graph management and execution in heterogeneous computing";
+ homepage = "https://github.com/uqfoundation/pathos/";
+ license = licenses.bsd3;
+ };
+
+}