xin/pkgs/orgparse.nix

24 lines
390 B
Nix
Raw Normal View History

2023-07-11 09:12:50 -06:00
{
buildPythonPackage,
setuptools-scm,
pytest,
fetchPypi,
...
}:
buildPythonPackage rec {
pname = "orgparse";
version = "0.3.2";
2023-07-11 09:12:50 -06:00
nativeBuildInputs = [setuptools-scm];
#propagatedBuildInputs = [ ];
2023-07-11 09:12:50 -06:00
nativeCheckInputs = [pytest];
doCheck = true;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-RRBQ55rLelHGXcmbkJXq5NUL1ZhUE1T552PLTL31mlU=";
};
}