mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
entrypoints example
This commit is contained in:
parent
42bad32e13
commit
d228d52870
1 changed files with 15 additions and 0 deletions
|
@ -6564,6 +6564,21 @@ in {
|
|||
propagatedBuildInputs = with self; [ configparser ];
|
||||
};
|
||||
|
||||
entrypoints_flit = buildPythonPackage rec {
|
||||
pname = "entrypoints";
|
||||
version = "0.2.2";
|
||||
name = "${pname}-${version}";
|
||||
format = "flit";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "takluyver";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1asi3xfym1g9z24p9ivzyp4smnl600w8hghlv5dziabj6csj8s1h";
|
||||
};
|
||||
propagatedBuildInputs = with self; [ configparser ];
|
||||
};
|
||||
|
||||
etcd = buildPythonPackage rec {
|
||||
name = "etcd-${version}";
|
||||
version = "2.0.8";
|
||||
|
|
Loading…
Reference in a new issue