silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / samarium / default.nix
blob9e32e1c5b5dfe418a77bd39184a6696e9ceee851
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   crossandra,
7   dahlia,
8 }:
10 buildPythonPackage rec {
11   pname = "samarium";
12   version = "0.6.2";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "samarium-lang";
17     repo = "samarium";
18     rev = "refs/tags/${version}";
19     hash = "sha256-sOkJ67B8LaIA2cwCHaFnc16lMG8uaegBJCzF6Li77vk=";
20   };
22   build-system = [ poetry-core ];
23   dependencies = [ crossandra dahlia ];
25   meta = with lib; {
26     changelog = "https://github.com/samarium-lang/samarium/blob/${src.rev}/CHANGELOG.md";
27     description = "The Samarium Programming Language";
28     license = licenses.mit;
29     homepage = "https://samarium-lang.github.io/Samarium";
30     maintainers = with maintainers; [ sigmanificient ];
31   };