lol

python310Packages.od: add pythonImportsCheck

authored by

Fabian Affolter and committed by
GitHub
19ec9f1d 7ea97bf4

+6 -1
+6 -1
pkgs/development/python-modules/od/default.nix
··· 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk="; 17 + hash = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk="; 18 18 }; 19 19 20 20 checkInputs = [ 21 21 repeated-test 22 22 ]; 23 23 24 + pythonImportsCheck = [ 25 + "od" 26 + ]; 27 + 24 28 meta = with lib; { 25 29 description = "Shorthand syntax for building OrderedDicts"; 26 30 homepage = "https://github.com/epsy/od"; 27 31 license = licenses.mit; 32 + maintainers = with maintainers; [ ]; 28 33 }; 29 34 }