summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-03 00:34:18 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-03 00:34:18 +0200
commit37b421ae5bce900e4572c1280d1cbe7c4cf832e0 (patch)
tree93a65fa5f6bf96b96cd1402405b57a627373b48b /pkgs/development/python-modules
parenta143a6dd34cd72fe24962988c7eccb97b1173fac (diff)
downloadnixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar.gz
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar.bz2
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar.lz
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar.xz
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.tar.zst
nixpkgs-37b421ae5bce900e4572c1280d1cbe7c4cf832e0.zip
python3Packages.bashlex: 0.14 -> 0.15
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/bashlex/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/bashlex/default.nix b/pkgs/development/python-modules/bashlex/default.nix
index 8e29eed2acf..0ee12c41480 100644
--- a/pkgs/development/python-modules/bashlex/default.nix
+++ b/pkgs/development/python-modules/bashlex/default.nix
@@ -8,13 +8,13 @@
 
 buildPythonPackage rec {
   pname = "bashlex";
-  version = "0.14";
+  version = "0.15";
 
   src = fetchFromGitHub {
     owner = "idank";
     repo = pname;
     rev = version;
-    sha256 = "070spmbf53y18miky5chgky4x5h8kp9czkp7dm173klv9pi2cn0k";
+    sha256 = "sha256-kKVorAIKlyC9vUzLOlaZ/JrG1kBBRIvLwBmHNj9nx84=";
   };
 
   checkInputs = [ nose ];
@@ -29,9 +29,11 @@ buildPythonPackage rec {
     ${python.interpreter} -m nose --with-doctest
   '';
 
+  pythonImportsCheck = [ "bashlex" ];
+
   meta = with lib; {
     description = "Python parser for bash";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     homepage = "https://github.com/idank/bashlex";
     maintainers = with maintainers; [ multun ];
   };