20 lines
259 B
Nix
20 lines
259 B
Nix
{
|
|
pname,
|
|
version,
|
|
sha256,
|
|
|
|
buildPythonPackage,
|
|
|
|
setuptools-scm,
|
|
|
|
fetchPypi,
|
|
}:
|
|
buildPythonPackage rec {
|
|
inherit pname version;
|
|
pyproject = true;
|
|
build-system = [ setuptools-scm ];
|
|
src = fetchPypi {
|
|
inherit pname version sha256;
|
|
};
|
|
}
|