xin/pkgs/orgparse.nix

27 lines
498 B
Nix
Raw Permalink Normal View History

{ buildPythonPackage
, setuptools-scm
, pytest
2024-08-29 08:10:38 -06:00
, fetchFromGitHub
, ...
}:
buildPythonPackage rec {
pname = "orgparse";
2024-08-29 08:10:38 -06:00
version = "0.4.20231004";
2024-08-29 08:10:38 -06:00
pyproject = true;
2024-08-29 08:11:54 -06:00
nativeBuildInputs = [ setuptools-scm ];
#propagatedBuildInputs = [ ];
nativeCheckInputs = [ pytest ];
doCheck = true;
2024-08-29 08:10:38 -06:00
src = fetchFromGitHub {
owner = "karlicoss";
repo = pname;
rev = "da56aae64a6373ae8bab2dde9dc756f904f1d8f8";
sha256 = "sha256-Vx7WDL6svMtlhuxXBQsh9gcCZTnVD4RV8lz6ijK6qbw=";
};
}