mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
306 B
Nix
15 lines
306 B
Nix
{ buildPythonPackage, fetchPypi
|
|
, requests, six, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypchat";
|
|
version = "0.21";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests six dateutil ];
|
|
}
|