My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rpdb/default.nix

21 lines
418 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "rpdb";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "5d1a1cee34378ab075879dc30fa6328d448a9f680a66c4e84cac7382ad92f15f";
};
meta = with lib; {
description = "pdb wrapper with remote access via tcp socket";
homepage = "https://github.com/tamentis/rpdb";
license = licenses.bsd2;
};
}