Merge pull request #48164 from costrouc/costrouc/python-dopy-refactor

pythonPackages.dopy: refactor move to python-modules
This commit is contained in:
Jörg Thalheim 2018-10-15 23:23:47 +01:00 committed by GitHub
commit 8099538634
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 21 deletions

View File

@ -0,0 +1,26 @@
{ pkgs
, buildPythonPackage
, requests
, six
}:
buildPythonPackage rec {
version = "2016-01-04";
pname = "dopy";
src = pkgs.fetchFromGitHub {
owner = "Wiredcraft";
repo = "dopy";
rev = "cb443214166a4e91b17c925f40009ac883336dc3";
sha256 ="0ams289qcgna96aak96jbz6wybs6qb95h2gn8lb4lmx2p5sq4q56";
};
propagatedBuildInputs = [ requests six ];
meta = with pkgs.lib; {
description = "Digital Ocean API python wrapper";
homepage = "https://github.com/Wiredcraft/dopy";
license = licenses.mit;
maintainers = with maintainers; [ lihop ];
};
}

View File

@ -1925,27 +1925,7 @@ in {
dogpile_core = callPackage ../development/python-modules/dogpile.core { };
dopy = buildPythonPackage rec {
version = "2016-01-04";
name = "dopy-${version}";
src = pkgs.fetchFromGitHub {
owner = "Wiredcraft";
repo = "dopy";
rev = "cb443214166a4e91b17c925f40009ac883336dc3";
sha256 ="0ams289qcgna96aak96jbz6wybs6qb95h2gn8lb4lmx2p5sq4q56";
};
propagatedBuildInputs = with self; [ requests six ];
meta = {
description = "Digital Ocean API python wrapper";
homepage = "https://github.com/Wiredcraft/dopy";
license = licenses.mit;
maintainers = with maintainers; [ lihop ];
platforms = platforms.all;
};
};
dopy = callPackage ../development/python-modules/dopy { };
dpkt = callPackage ../development/python-modules/dpkt {};