pythonPackages.derpconf: Move to own file
This commit is contained in:
parent
7ebc5dfad2
commit
1be2158445
19
pkgs/development/python-modules/derpconf/default.nix
Normal file
19
pkgs/development/python-modules/derpconf/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "derpconf";
|
||||
version = "0.4.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0si3xnhyjk8dykr377v35bldsjv1ikgx4ff3crizwxv47ag42aci";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "derpconf abstracts loading configuration files for your app";
|
||||
homepage = https://github.com/globocom/derpconf;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -2085,22 +2085,7 @@ in {
|
||||
|
||||
demjson = callPackage ../development/python-modules/demjson { };
|
||||
|
||||
derpconf = self.buildPythonPackage rec {
|
||||
name = "derpconf-0.4.9";
|
||||
|
||||
propagatedBuildInputs = with self; [ six ];
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/d/derpconf/${name}.tar.gz";
|
||||
sha256 = "9129419e3a6477fe6366c339d2df8c614bdde82a639f33f2f40d4de9a1ed236a";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "derpconf abstracts loading configuration files for your app";
|
||||
homepage = https://github.com/globocom/derpconf;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
derpconf = callPackage ../development/python-modules/derpconf { };
|
||||
|
||||
deskcon = self.buildPythonPackage rec {
|
||||
name = "deskcon-0.3";
|
||||
|
Loading…
Reference in New Issue
Block a user