mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #178845 from r-ryantm/auto-update/python3.10-railroad-diagrams
python310Packages.railroad-diagrams: 1.1.1 -> 2.0.3
This commit is contained in:
commit
48c90a45d3
1 changed files with 11 additions and 5 deletions
|
@ -1,24 +1,30 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "railroad-diagrams";
|
||||
version = "1.1.1";
|
||||
version = "2.0.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "8a1ec227666be2000e76794aa740f77987f1586077aae4d090d2633b3064c976";
|
||||
hash = "sha256-wRClrA4I/DWNw/hL5rowQMn0R61c6qiNg9Ho6nXqi+4=";
|
||||
};
|
||||
|
||||
# this is a dependency of pyparsing, which is a dependency of pytest
|
||||
# This is a dependency of pyparsing, which is a dependency of pytest
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "railroad" ];
|
||||
pythonImportsCheck = [
|
||||
"railroad"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Generate SVG railroad syntax diagrams, like on JSON.org";
|
||||
description = "Module to generate SVG railroad syntax diagrams";
|
||||
homepage = "https://github.com/tabatkins/railroad-diagrams";
|
||||
license = licenses.cc0;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
|
|
Loading…
Reference in a new issue