pythonPackages.rpdb: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 12:18:37 -04:00
parent 1c5e08e217
commit 1c0b595b05
2 changed files with 22 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "rpdb";
version = "0.1.5";
src = fetchPypi {
inherit pname version;
sha256 = "0rql1hq3lziwcql0h3dy05w074cn866p397ng9bv6qbz85ifw1bk";
};
meta = with stdenv.lib; {
description = "pdb wrapper with remote access via tcp socket";
homepage = https://github.com/tamentis/rpdb;
license = licenses.bsd2;
};
}