nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 563 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pyyaml, 6}: 7 8buildPythonPackage rec { 9 pname = "cmdline"; 10 version = "0.2.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "7cf6af53549892b2218c2f56a199dff54a733be5c5515c0fd626812070b0a86a"; 16 }; 17 18 # No tests, https://github.com/rca/cmdline/issues/1 19 doCheck = false; 20 propagatedBuildInputs = [ pyyaml ]; 21 22 meta = { 23 description = "Utilities for consistent command line tools"; 24 homepage = "https://github.com/rca/cmdline"; 25 license = lib.licenses.asl20; 26 }; 27}