mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
pythonPackages.face: init at 0.1.0
This commit is contained in:
parent
ca4104cc07
commit
a5a6b8eaa2
31
pkgs/development/python-modules/face/default.nix
Normal file
31
pkgs/development/python-modules/face/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, boltons, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "face";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zdp5qlrhxf4dypvvd0zr7zxj2svkz9wblp37vgw01wvcy9b1ds7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ boltons ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
checkPhase = "pytest face/test";
|
||||
|
||||
# ironically, test_parse doesn't parse, but fixed in git so no point
|
||||
# reporting
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mahmoud/face;
|
||||
description = "A command-line interface parser and framework";
|
||||
longDescription = ''
|
||||
A command-line interface parser and framework, friendly for
|
||||
users, full-featured for developers.
|
||||
'';
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ twey ];
|
||||
};
|
||||
}
|
@ -354,6 +354,8 @@ in {
|
||||
|
||||
eradicate = callPackage ../development/python-modules/eradicate { };
|
||||
|
||||
face = callPackage ../development/python-modules/face { };
|
||||
|
||||
fastpbkdf2 = callPackage ../development/python-modules/fastpbkdf2 { };
|
||||
|
||||
fido2 = callPackage ../development/python-modules/fido2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user