tvl-depot/snippets/nix-mode/pythonPackage
Griffin Smith 35c76e7098 Many updates, too many to count
commit messages are for code, not config

I guess
2020-03-26 15:03:25 -04:00

16 lines
No EOL
445 B
Text

# key: pypkg
# name: pythonPackage
# condition: t
# --
${1:pname} = buildPythonPackage rec {
name = "\${pname}-\${version}";
pname = "$1";
version = "${2:1.0.0}";
src = fetchPypi {
inherit pname version;
sha256 = "0000000000000000000000000000000000000000000000000000";
};
propagatedBuildInputs = with pythonSelf; [
$3
];
};