bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
30 lines
638 B
Nix
30 lines
638 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "devgoldyutils";
|
|
version = "3.0.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2kGu9QPP5WqKv2gO9DAkE9SNDerzNaEDRt5DrrYD9nQ=";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
pythonImportsCheck = [ "devgoldyutils" ];
|
|
|
|
meta = {
|
|
description = "Collection of utility functions for Python used by mov-cli";
|
|
homepage = "https://github.com/THEGOLDENPRO/devgoldyutils";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ roshaen ];
|
|
};
|
|
}
|