nixpkgs/pkgs/development/python-modules/grandalf/default.nix
2022-01-15 12:09:42 +01:00

48 lines
852 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, future
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "grandalf";
version = "0.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bdcht";
repo = pname;
rev = "v${version}";
hash = "sha256-j2SvpQvDMfwoj2PAQSxzEIyIzzJ61Eb9wgetKyni6A4=";
};
propagatedBuildInputs = [
pyparsing
future
];
checkInputs = [
pytestCheckHook
];
patches = [
./no-setup-requires-pytestrunner.patch
];
pythonImportsCheck = [
"grandalf"
];
meta = with lib; {
description = "Module for experimentations with graphs and drawing algorithms";
homepage = "https://github.com/bdcht/grandalf";
license = licenses.gpl2Only;
maintainers = with maintainers; [ cmcdragonkai ];
};
}