erpnext-nix/python/git-url-parse.nix

15 lines
289 B
Nix
Raw Normal View History

2023-05-18 15:36:51 +00:00
{ buildPythonPackage
, fetchPypi
, pbr
2023-05-18 14:50:31 +00:00
}:
buildPythonPackage rec {
pname = "git-url-parse";
version = "1.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-e19OOusdaTr+7mejvUrAY/cgbC6ORuVZ8NoNqYRF8Rc=";
};
2023-05-18 15:36:51 +00:00
propagatedBuildInputs = [pbr];
doCheck = false;
2023-05-18 14:50:31 +00:00
}