forked from axeman/erpnext-nix
14 lines
265 B
Nix
14 lines
265 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "git-url-parse";
|
|
version = "1.2.2";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-e19OOusdaTr+7mejvUrAY/cgbC6ORuVZ8NoNqYRF8Rc=";
|
|
};
|
|
propagatedBuildInputs = [];
|
|
}
|