depot/third_party/nixpkgs/pkgs/development/python-modules/fastimport/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

22 lines
546 B
Nix

{ lib, buildPythonPackage, python, fetchPypi}:
buildPythonPackage rec {
pname = "fastimport";
version = "0.9.13";
src = fetchPypi {
inherit pname version;
sha256 = "486135a39edb85808fdbbe2c8009197978800a4544fca56cc2074df32e1304f3";
};
checkPhase = ''
${python.interpreter} -m unittest discover
'';
meta = with lib; {
homepage = "https://launchpad.net/python-fastimport";
description = "VCS fastimport/fastexport parser";
maintainers = with maintainers; [ koral ];
license = licenses.gpl2Plus;
};
}