about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorFahad Sadah2017-11-05 21:37:27 +0000
committerFahad Sadah2017-11-05 22:03:40 +0000
commitc3786d07b16bdc7c8268a979fdcdf0307974e9d2 (patch)
treedd080074eafac2b6bcc94ddc2fcb4414622c5018 /pkgs/top-level
parent59c995ce06d19fe261b495f8b4c5747c899fdee8 (diff)
python: fastimport 0.9.4 -> 0.9.6
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix26
1 files changed, 2 insertions, 24 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 7664f422c0b9..595e7dc27b42 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -8645,30 +8645,8 @@ in {
     };
   };
 
-  fastimport = buildPythonPackage rec {
-    name = "fastimport-${version}";
-    version = "0.9.4";
-
-    # Judging from SyntaxError
-    disabled = isPy3k;
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/f/fastimport/${name}.tar.gz";
-      sha256 = "0k8x7552ypx9rc14vbsvg2lc6z0r8pv9laah28pdwyynbq10825d";
-    };
-
-    checkPhase = ''
-      ${python.interpreter} -m unittest discover
-    '';
-
-    meta = {
-      homepage = https://launchpad.net/python-fastimport;
-      description = "VCS fastimport/fastexport parser";
-      maintainers = with maintainers; [ koral ];
-      license = licenses.gpl2Plus;
-    };
-  };
-
+  fastimport = callPackage ../development/python-modules/fastimport { };
+ 
   feedgen = callPackage ../development/python-modules/feedgen { };
 
   feedgenerator = callPackage ../development/python-modules/feedgenerator {