summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2018-08-03 12:40:34 +0200
committerGabriel Ebner <gebner@gebner.org>2018-08-03 12:40:34 +0200
commit0a519ad6df8b2a23da9332421bc5c73735fd182b (patch)
tree3af2cea5f69457be5080d40a93e23a83ee57f400 /pkgs/development/python-modules
parent29387fbbe98c6ad0c554dd2ccfc81456b2ec5419 (diff)
downloadnixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar.gz
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar.bz2
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar.lz
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar.xz
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.tar.zst
nixlib-0a519ad6df8b2a23da9332421bc5c73735fd182b.zip
pythonPackages.shippai: init at 0.2.3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/shippai/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/shippai/default.nix b/pkgs/development/python-modules/shippai/default.nix
new file mode 100644
index 000000000000..5f9fa408d0f7
--- /dev/null
+++ b/pkgs/development/python-modules/shippai/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "shippai";
+  # Please make sure that vdirsyncer still builds if you update this package.
+  version = "0.2.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1ppwywzg4d12h658682ssmingm6ls6a96p4ak26i2w9d4lf8pfsc";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Use Rust failures as Python exceptions";
+    homepage = https://github.com/untitaker/shippai;
+    license = licenses.mit;
+    maintainer = with maintainers; [ gebner ];
+  };
+}