nixpkgs/pkgs/development/python-modules/plac/default.nix
Sergei Trofimovich 3ec1a47f2e treewide: remove @sdll from maintainers
sdll github handle returns 404. Sasha agreed to remove @sdll
maintainer entry.
2021-09-19 21:06:14 +01:00

27 lines
565 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "plac";
version = "1.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "51e332dabc2aed2cd1f038be637d557d116175101535f53eaa7ae854a00f2a74";
};
checkPhase = ''
cd doc
${python.interpreter} -m unittest discover -p "*test_plac*"
'';
meta = with lib; {
description = "Parsing the Command Line the Easy Way";
homepage = "https://github.com/micheles/plac";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ ];
};
}