forked from mirrors/nixpkgs
Merge pull request #31297 from fahadsadah/master
python: fastimport 0.9.4 -> 0.9.6
This commit is contained in:
commit
a346dc66a7
22
pkgs/development/python-modules/fastimport/default.nix
Normal file
22
pkgs/development/python-modules/fastimport/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -8656,29 +8656,7 @@ 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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue