nixpkgs/pkgs/development/python-modules/breezy/default.nix

43 lines
874 B
Nix
Raw Normal View History

2020-02-22 09:24:00 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, configobj
2020-12-06 21:38:21 +00:00
, patiencediff
2020-02-22 09:24:00 +00:00
, six
, fastimport
, dulwich
, launchpadlib
, testtools
}:
buildPythonPackage rec {
pname = "breezy";
2021-05-04 09:54:27 +00:00
version = "3.2.0";
2020-02-22 09:24:00 +00:00
src = fetchPypi {
inherit pname version;
2021-05-04 09:54:27 +00:00
sha256 = "sha256-lwKPk+UxKAhfIgUb1xPLJ/za53VdHenmBrr85RTpEps=";
2020-02-22 09:24:00 +00:00
};
2020-12-06 21:38:21 +00:00
propagatedBuildInputs = [ configobj patiencediff six fastimport dulwich launchpadlib ];
2020-02-22 09:24:00 +00:00
checkInputs = [ testtools ];
# There is a conflict with their `lazy_import` and plugin tests
doCheck = false;
# symlink for bazaar compatibility
postInstall = ''
ln -s "$out/bin/brz" "$out/bin/bzr"
'';
pythonImportsCheck = [ "breezy" ];
meta = with lib; {
description = "Friendly distributed version control system";
homepage = "https://www.breezy-vcs.org/";
license = licenses.gpl2;
maintainers = [ maintainers.marsam ];
};
}