summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastimport
diff options
context:
space:
mode:
authorFahad Sadah <92872+fahadsadah@users.noreply.github.com>2017-11-05 21:37:27 +0000
committerFahad Sadah <92872+fahadsadah@users.noreply.github.com>2017-11-05 22:03:40 +0000
commitc3786d07b16bdc7c8268a979fdcdf0307974e9d2 (patch)
treedd080074eafac2b6bcc94ddc2fcb4414622c5018 /pkgs/development/python-modules/fastimport
parent59c995ce06d19fe261b495f8b4c5747c899fdee8 (diff)
downloadnixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar.gz
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar.bz2
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar.lz
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar.xz
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.tar.zst
nixlib-c3786d07b16bdc7c8268a979fdcdf0307974e9d2.zip
python: fastimport 0.9.4 -> 0.9.6
Diffstat (limited to 'pkgs/development/python-modules/fastimport')
-rw-r--r--pkgs/development/python-modules/fastimport/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fastimport/default.nix b/pkgs/development/python-modules/fastimport/default.nix
new file mode 100644
index 000000000000..ee1048ec5fac
--- /dev/null
+++ b/pkgs/development/python-modules/fastimport/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, python, fetchurl }:
+
+buildPythonPackage rec {
+  name = "fastimport-${version}";
+  version = "0.9.6";
+
+  src = fetchurl {
+    url = "mirror://pypi/f/fastimport/${name}.tar.gz";
+    sha256 = "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43";
+  };
+
+  checkPhase = ''
+    ${python.interpreter} -m unittest discover
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = https://launchpad.net/python-fastimport;
+    description = "VCS fastimport/fastexport parser";
+    maintainers = with maintainers; [ koral ];
+    license = licenses.gpl2Plus;
+  };
+}