Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fastimport / default.nix
blob904aac3069c65221c81f39b1a0517531e5ec506d
1 { lib
2 , pythonOlder
3 , buildPythonPackage
4 , fetchPypi
5 , unittestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "fastimport";
10   version = "0.9.14";
11   format = "setuptools";
13   disabled = pythonOlder "3.5";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "6ac99dda4e7b0b3ae831507b6d0094802e6dd95891feafde8cc5c405b6c149ca";
18   };
20   nativeCheckInputs = [ unittestCheckHook ];
22   pythonImportsCheck = [ "fastimport" ];
24   meta = with lib; {
25     homepage = "https://github.com/jelmer/python-fastimport";
26     description = "VCS fastimport/fastexport parser";
27     maintainers = with maintainers; [ koral ];
28     license = licenses.gpl2Plus;
29   };