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

14 lines
265 B
Nix
Raw Normal View History

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