mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
6d32c2c53c
(cherry picked from commit 51a31a6f40
)
29 lines
597 B
Nix
29 lines
597 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stringly";
|
|
version = "1.0b2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "09fi9dgf27v4qi0mwwms7hpwim9qpyalckd66p7nlmfp6c8bzppq";
|
|
};
|
|
|
|
pythonImportsCheck = [ "stringly" ];
|
|
|
|
propagatedBuildInputs = [ typing-extensions ];
|
|
|
|
meta = with lib; {
|
|
description = "Stringly: Human Readable Object Serialization";
|
|
homepage = "https://github.com/evalf/stringly";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.Scriptkiddi ];
|
|
};
|
|
}
|