pythonPackages.derpconf: Move to own file

This commit is contained in:
Elis Hirwing 2018-04-03 14:27:23 +02:00 committed by Frederik Rietdijk
parent 7ebc5dfad2
commit 1be2158445
2 changed files with 20 additions and 16 deletions

View 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;
};
}

View File

@ -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";