biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / fastimport / default.nix
blob93ce891c7d958d6a4de72de89b655240dd7c0ad5
2   lib,
3   pythonOlder,
4   buildPythonPackage,
5   fetchPypi,
6   unittestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "fastimport";
11   version = "0.9.14";
12   format = "setuptools";
14   disabled = pythonOlder "3.5";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "6ac99dda4e7b0b3ae831507b6d0094802e6dd95891feafde8cc5c405b6c149ca";
19   };
21   nativeCheckInputs = [ unittestCheckHook ];
23   pythonImportsCheck = [ "fastimport" ];
25   meta = with lib; {
26     homepage = "https://github.com/jelmer/python-fastimport";
27     description = "VCS fastimport/fastexport parser";
28     maintainers = with maintainers; [ koral ];
29     license = licenses.gpl2Plus;
30   };