nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.bashlex: 0.14 -> 0.15

+5 -3
+5 -3
pkgs/development/python-modules/bashlex/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "bashlex"; 11 - version = "0.14"; 11 + version = "0.15"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "idank"; 15 15 repo = pname; 16 16 rev = version; 17 - sha256 = "070spmbf53y18miky5chgky4x5h8kp9czkp7dm173klv9pi2cn0k"; 17 + sha256 = "sha256-kKVorAIKlyC9vUzLOlaZ/JrG1kBBRIvLwBmHNj9nx84="; 18 18 }; 19 19 20 20 checkInputs = [ nose ]; ··· 29 29 ${python.interpreter} -m nose --with-doctest 30 30 ''; 31 31 32 + pythonImportsCheck = [ "bashlex" ]; 33 + 32 34 meta = with lib; { 33 35 description = "Python parser for bash"; 34 - license = licenses.gpl3; 36 + license = licenses.gpl3Plus; 35 37 homepage = "https://github.com/idank/bashlex"; 36 38 maintainers = with maintainers; [ multun ]; 37 39 };