Merge pull request #129131 from dotlambda/fastimport-python35
pythonPackages.fastimport: requires Python >= 3.5
This commit is contained in:
commit
c5accb8214
@ -1,9 +1,16 @@
|
||||
{ lib, buildPythonPackage, python, fetchPypi}:
|
||||
{ lib
|
||||
, pythonOlder
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fastimport";
|
||||
version = "0.9.13";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "486135a39edb85808fdbbe2c8009197978800a4544fca56cc2074df32e1304f3";
|
||||
@ -13,8 +20,10 @@ buildPythonPackage rec {
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "fastimport" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://launchpad.net/python-fastimport";
|
||||
homepage = "https://github.com/jelmer/python-fastimport";
|
||||
description = "VCS fastimport/fastexport parser";
|
||||
maintainers = with maintainers; [ koral ];
|
||||
license = licenses.gpl2Plus;
|
||||
|
Loading…
Reference in New Issue
Block a user