9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/v${version}";
20 hash = "sha256-EWwDtS2cRLBe4aZuH72hgg2BQnVJQ39GmPx05NxTNjE=";
23 # tests are broken, see https://github.com/ialbert/plac/issues/74
29 ${python.interpreter} doc/test_plac.py
34 pythonImportsCheck = [ "plac" ];
37 description = "Parsing the Command Line the Easy Way";
38 mainProgram = "plac_runner.py";
39 homepage = "https://github.com/micheles/plac";
40 license = licenses.bsdOriginal;