Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "environmental-override"; 8 version = "0.1.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1vhd37i6f8xh6kd61yxc2ynzgcln7v2p7fyzjmhbkdnws6gwfs6s"; 13 }; 14 15 # No tests have been written for this library. 16 doCheck = false; 17 18 pythonImportsCheck = [ "environmental_override" ]; 19 20 meta = { 21 description = "Easily configure apps using simple environmental overrides"; 22 homepage = "https://github.com/coddingtonbear/environmental-override"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ nathanruiz ]; 25 }; 26}