pythonPackages.hypchat : move to separate expression
This commit is contained in:
15
pkgs/development/python-modules/hypchat/default.nix
Normal file
15
pkgs/development/python-modules/hypchat/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, requests, six, dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hypchat";
|
||||
version = "0.21";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests six dateutil ];
|
||||
}
|
||||
Reference in New Issue
Block a user