mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
16 lines
345 B
Nix
16 lines
345 B
Nix
{ buildPythonPackage, fetchPypi
|
|
, requests, six, python-dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypchat";
|
|
version = "0.21";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests six python-dateutil ];
|
|
}
|