default.nix (654B)
1 { 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "pipfile"; 9 version = "0.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "pypa"; 13 repo = "pipfile"; 14 rev = "v${version}"; 15 hash = "sha256-GsDhxnvBvjJGQWk25cS9+HqLQ9YVSxujeX2iGivYl6Q="; 16 }; 17 18 dependencies = with python3Packages; [ toml ]; 19 20 doCheck = false; 21 pythonImportsCheck = [ "pipfile" ]; 22 23 meta = { 24 description = "Pipfile: the replacement for requirements.txt"; 25 homepage = "https://github.com/pypa/pipfile"; 26 license = with lib.licenses; [ 27 asl20 28 bsd2 29 ]; 30 maintainers = [ lib.maintainers.sikmir ]; 31 }; 32 }