mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
33 lines
690 B
Nix
33 lines
690 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "railroad-diagrams";
|
|
version = "2.0.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dBP/oZRYO9UQ78PkZo9h1aOL7soYa7fDbuptDW8D+0U=";
|
|
};
|
|
|
|
# This is a dependency of pyparsing, which is a dependency of pytest
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"railroad"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to generate SVG railroad syntax diagrams";
|
|
homepage = "https://github.com/tabatkins/railroad-diagrams";
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|