mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python3Packages.commandparse: init at 1.1.1
This commit is contained in:
parent
d4a76b1f5f
commit
13e6f7df36
25
pkgs/development/python-modules/commandparse/default.nix
Normal file
25
pkgs/development/python-modules/commandparse/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "commandparse";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "06mcxc0vs5qdcywalgyx5zm18z4xcsrg5g0wsqqv5qawkrvmvl53";
|
||||
};
|
||||
|
||||
# tests only distributed upstream source, not PyPi
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "commandparse" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to parse command based CLI application";
|
||||
homepage = "https://github.com/flgy/commandparse";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = [ maintainers.fab ];
|
||||
};
|
||||
}
|
@ -1313,6 +1313,8 @@ in {
|
||||
|
||||
colour = callPackage ../development/python-modules/colour { };
|
||||
|
||||
commandparse = callPackage ../development/python-modules/commandparse { };
|
||||
|
||||
CommonMark = callPackage ../development/python-modules/commonmark { };
|
||||
|
||||
compiledb = callPackage ../development/python-modules/compiledb { };
|
||||
|
Loading…
Reference in New Issue
Block a user